按日下载提现异常文件
电商服务商按日查询并下载提现状态为异常的提现单,提现异常包括提现失败和银行退票。
| 请求参数 | 类型 | 描述 |
|---|---|---|
| query | object | 声明请求的查询参数 |
| bill_type | string | 账单类型NO_SUCC 枚举值 |
| bill_date | string | 账单日期 |
| tar_type | string | 压缩类型GZIP 枚举值 |
php
$instance->v3->merchant->fund->withdraw->billType->_bill_type_->getAsync([
'query' => [
'bill_type' => 'NO_SUCC',
'bill_date' => '2019-06-11',
'tar_type' => 'GZIP',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance->chain('v3/merchant/fund/withdraw/bill-type/{bill_type}')->getAsync([
'query' => [
'bill_type' => 'NO_SUCC',
'bill_date' => '2019-06-11',
'tar_type' => 'GZIP',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/merchant/fund/withdraw/bill-type/{bill_type}']->getAsync([
'query' => [
'bill_type' => 'NO_SUCC',
'bill_date' => '2019-06-11',
'tar_type' => 'GZIP',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$response = $instance->v3->merchant->fund->withdraw->billType->_bill_type_->get([
'query' => [
'bill_type' => 'NO_SUCC',
'bill_date' => '2019-06-11',
'tar_type' => 'GZIP',
],
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/merchant/fund/withdraw/bill-type/{bill_type}')->get([
'query' => [
'bill_type' => 'NO_SUCC',
'bill_date' => '2019-06-11',
'tar_type' => 'GZIP',
],
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/merchant/fund/withdraw/bill-type/{bill_type}']->get([
'query' => [
'bill_type' => 'NO_SUCC',
'bill_date' => '2019-06-11',
'tar_type' => 'GZIP',
],
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 |
|---|---|---|
| hash_type | string | 哈希类型SHA1 枚举值 |
| hash_value | string | 哈希值 |
| download_url | string | 账单下载地址 |